home *** CD-ROM | disk | FTP | other *** search
- -- Universal features.
- -- Every class inherit from ANY.
- class interface ANY
- exported features
- is_equal, frozen standard_is_equal (other:like Current):BOOLEAN
- -- Is 'other' attached to an object identical field by field to current object?
- copy, frozen standard_copy (other:like Current)
- -- Copy all fields of 'other' to corresponding fields of current object.
- lastchar:CHARACTER
- -- Last character read by 'readchar'.
- lastint:INTEGER
- -- Last integer read by 'readint'.
- laststring:STRING
- -- Last string read by 'readstring'.
- new_line
- -- Write line feed at end of default output.
- putchar(c:CHARACTER)
- -- Write 'c' at end of default output.
- putint(i:INTEGER)
- -- Write 'i' at end of default output.
- putstring(s:STRING)
- -- Write 's' at end of default output.
- readchar
- -- Read a new character from standard input.
- readint
- -- Read a new integer from standard input.
- readstring
- -- Read a new string from standard input.
- bit_size:INTEGER
- -- Bit number used to store current object.
- end interface -- class 'ANY'
-
-